Metadata-Version: 2.1
Name: bitwarden-simple-cli
Version: 1.0
Summary: Simple bitwarden CLI written in Python to list and decrypt secrets
Home-page: https://github.com/mickaelperrin/bitwarden-decrypt-cli
Author: Mickaël Perrin
Author-email: dev@mickaelperrin.fr
License: GPLv3
Description: 
        # Bitwarden decrypt CLI
        
        > This is a port of the Bitwarden NodeJS CLI to Python focused on decryption of secrets
        
        ## How to install
        
        ### Pip
        ```
        pip install bitwarden-simple-cli
        ```
        
        ## How to use ?
        
        ### Get decrypted valued
        ```
        bw-simple get UUID FIELD
        ```
        ### List items
        ```
        bw-simple list
        ```
        
        ## Currently supported fields
        
        The script currently handles the decryption of the following entities and fields:
        
        - login
            - [ custom field name ]
            - name
            - notes
            - password
            - uri: retrieve first uri without new line
            - uris: retrieve all uris, one per line
            - username
        - note
            - [ custom field name ]
            - name
            - notes
            
        It supports decryption of personal and organization ciphers.
        
        ## Why this project ?
        
        We use Ansible to manage infrastructures and use a lookup plugin to grab hundred of secrets. Each secret is retrieven 
        with the native NodeJS CLI in about 0.85s on my computer. When you have hundreds of secrets, that makes long minutes to wait.
        
        According to https://github.com/bitwarden/cli/issues/67, node looks like to suffer from slow bootstrap.
        
        This port to Python is aimed to increase secrets lookup performance. First benchmarks spotted that secrets could be 
        retrieven in around 0.15s with this port.
        
        ## License
        
        GPLv3
Keywords: bitwarden cli password secrets
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: Natural Language :: French
Classifier: Topic :: Security
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
